Android Logging

logcatfilter negatefilter
^(?!.*(bar|foo|memtrack).*$  使
command line grep -v (invert match)使

kotlin
Log.d(tag, message) print debug?
logcattag
> Log.d:debug,Log.v: verbose,Log.i: info, Log.w warn, Log.e error,Log.wtf what terreble failure

localfile()
android studio logCat(alt+F6)...
ADB Shell使
logcat
adb logcat > logcat.txt #ADB_Shell
logcat
adb logcat | tee <filename>
terminal
IDE logfile??

emulator(device), process, filter
ADB Shelladb()
$ adb kill-server
$ adb start-server
applicationmanifest

Timber使

link: